home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / serial / callback.001 / callback~ / callback / lib / dbase / makefilenames.c < prev    next >
C/C++ Source or Header  |  1996-07-22  |  246b  |  17 lines

  1.  
  2. #include "dbase.p"
  3.  
  4. void make_filenames(char *line)
  5. {    
  6.     int
  7.         index;
  8.  
  9.     if ((index = lookup_tty(line)) < 0)
  10.     {
  11.         log(log_off, "Invalid tty line '%s' received", line);
  12.         exit (1);
  13.     }
  14.  
  15.     assign_filenames(line);
  16. }
  17.